home *** CD-ROM | disk | FTP | other *** search
/ Night Owl 6 / Night Owl's Shareware - PDSI-006 - Night Owl Corp (1990).iso / 015a / bootwhat.zip / HEX2BIN.C < prev    next >
C/C++ Source or Header  |  1990-12-17  |  216b  |  17 lines

  1. /*
  2.  * hex2bin - a simple hex to binary converter
  3.  */
  4. #include <stdio.h>
  5. main()
  6. {
  7.   int c;
  8.  
  9. #ifdef MSDOS
  10.   setmode(stdout,O_BINARY);
  11. #endif
  12.  
  13.   while (scanf("%x", &c) == 1)
  14.     putchar(c);
  15.   exit(0);
  16. }
  17.